home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / basic3 / pro7 / disclaim.bas (.txt) < prev    next >
Encoding:
GW-BASIC  |  1991-04-19  |  2.5 KB  |  82 lines

  1. 10  REM    THANK YOU FOR YOUR SUPPORT
  2. 20  REM    BEST WISHES
  3. 30  REM
  4. 40  PRINT
  5. 50  PRINT
  6. 60  PRINT"
  7. 70  PRINT"                         DISCLAIMER
  8. 80  PRINT
  9. 90  PRINT
  10. 100  PRINT"     The programs are provided on an as is basis without
  11. 110  PRINT"     warranty of any kind,
  12. 120  PRINT"
  13. 130  PRINT"     expressed or implied, including but not limited to
  14. 140  PRINT"     the implied warranties of
  15. 150  PRINT"
  16. 160  PRINT"     merchantability and fitness for a particular purpose.
  17. 170  PRINT"
  18. 180  PRINT"     The entire risk as to quality and performance of these
  19. 190  PRINT"     programs rest solely
  20. 210  PRINT"     with the user. Should any part of these programs
  21. 220  PRINT"     prove defective, the user
  22. 230  PRINT"
  23. 240  PRINT"    will assume the entire cost of all necessary repair,
  24. 250  PRINT"    servicing,and correction.
  25. 260  PRINT"
  26. 261  PRINT " PLEASE PRESS <ENTER> TO CONTINUE
  27. 262  INPUT ANSWER$
  28. 263  IF ANSWER$ = "" THEN GOTO 270 ELSE  RUN "MENU"
  29. 270  PRINT
  30. 280  CLS:PRINT"Mr. Small will not be held liable  to you for any
  31. 290  PRINT"    damages, including any
  32. 300  PRINT "
  33. 310  PRINT"  lost profits, lost savings, or other incidental
  34. 320  PRINT"  or consequential damages
  35. 330  PRINT"
  36. 340  PRINT"  arising out of the use or inability to use this
  37. 350  PRINT"  program even if Mr. SMALL
  38. 380  PRINT"  has been advised of the possibility of such damages.
  39. 400  PRINT"  This warranty gives you specific legal rights,and
  40. 410  PRINT"  you may have other rights
  41. 430  PRINT"  Which may vary from state to  state.
  42. 450  PRINT"  some states do not allow the exclusion of
  43. 470  PRINT"  implied or consequential damages
  44. 480  PRINT"
  45. 490  PRINT"  so parts of the above may not apply to you.
  46. 500  PRINT
  47. 501  PRINT "PLEASE PRESS <ENTER> TO CONTINUE
  48. 502  INPUT ANSWER$
  49. 503  IF ANSWER$="" THEN GOTO 510 ELSE THEN RUN "MENU"
  50. 504  PRINT
  51. 505  PRINT
  52. 506  PRINT
  53. 507  PRINT
  54. 508  PRINT
  55. 510  CLS:PRINT"by operating any of the above programs or using
  56. 520  PRINT"    any part  of said programs
  57. 540  PRINT"    you acknowledge that you have read this
  58. 550  PRINT"    agreement, understand it, and
  59. 570  PRINT"    agree to be bound by its terms and conditions.
  60. 590  PRINT"    You further agree that it is the complete
  61. 600  PRINT"    and exclusive  statement of
  62. 620  PRINT"    the agreement between us, which inclusive of our
  63. 630  PRINT"    License Agreement supersedes
  64. 650  PRINT"    any proposal or prior agreement, oral or written,
  65. 660  PRINT"    and any other  communications
  66. 680  PRINT"                   between us.
  67. 720  PRINT" I WILL OFFER ABSOLUTELY NO SUPPORT TO UNREGISTERED USERS.
  68. 730  PRINT"
  69. 740  PRINT" IF YOU DO NOT CHOOSE TO REGISTER, YOU ARE COMPLETELY ON YOUR OWN!
  70. 750  PRINT"
  71. 760  PRINT" THANK YOU
  72. 770  PRINT"
  73. 780  PRINT" MR. FREDERICK XAVIER SMALL,LVN,DSD
  74. 790  PRINT
  75. 800  PRINT
  76. 810  PRINT
  77. 830  PRINT"Please press the <ENTER> Key to return to MENU"
  78. 840  PRINT"
  79. 850  INPUT ANSWER$
  80. 860  IF ANSWER$ = ""  THEN RUN "MENU" :  ELSE GOTO 70
  81. 870  END
  82.